home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ Common File Desc 1.xpl < prev    next >
Text File  |  1999-06-11  |  1KB  |  49 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="3"
  4. "UIPATH"="Appearance\Explorer\Files"
  5. "NAME"="EXE/DLL/COM File Description"
  6. "VERSION"="1.11"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="EXE Desc"
  9. "TEXT 2"="DLL Desc"
  10. "TEXT 3"="COM Desc"
  11. "DESCRIPTION 1"="This plug-in allows you to change the description for EXE, DLL and COM file."
  12. "DESCRIPTION 2"="We really don't know why anbody would change this, but it was on our user wish list so we've added it ;-)."
  13. "AUTHOR"="Xteq Systems"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  16.  
  17.  
  18. sP_1="HKCR\exefile\@"
  19. sP_2="HKCR\dllfile\@"
  20. sP_3="HKCR\comfile\@"
  21.  
  22. Sub Plugin_Initialize 
  23.  s=RegReadValue(sP_1)
  24.  SetUIElement 1,s
  25.  
  26.  s=RegReadValue(sP_2)
  27.  SetUIElement 2,s
  28.  
  29.  s=RegReadValue(sP_3)
  30.  SetUIElement 3,s
  31. End Sub
  32.  
  33. Sub Plugin_CheckData(ElementIndex)
  34. End Sub
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  s=GetUIElement(1)
  38.  Call RegWriteValue(SP_1,s,1)
  39.  
  40.  s=GetUIElement(2)
  41.  Call RegWriteValue(SP_2,s,1)
  42.  
  43.  s=GetUIElement(3)
  44.  Call RegWriteValue(SP_3,s,1)
  45. End Sub
  46.  
  47. Sub Plugin_Terminate 
  48. End Sub
  49.